ReadOnlyDictionaryBase Properties

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Syntax

C#
[SerializableAttribute]
public abstract class ReadOnlyDictionaryBase<TKey, TValue>
Visual Basic (Declaration)
<SerializableAttribute> _
Public MustInherit Class ReadOnlyDictionaryBase(Of TKey, TValue)
Visual C++
[SerializableAttribute]
generic<typename TKey, typename TValue>
public ref class ReadOnlyDictionaryBase abstract

Type Parameters

TKey
TValue

The type exposes the following properties.

Public Properties

  NameDescription
Public propertyCount
Must be overridden to provide the number of items in the collection.
(Inherited from ReadOnlyCollectionBase<(Of <T>)>.)
Public propertyItem
The indexer of the dictionary. The set accessor throws an NotSupportedException stating the dictionary is read-only.
Public propertyKeys
Returns a collection of the keys in this dictionary.
Public propertyValues
Returns a collection of the values in this dictionary. The ordering of values in this collection is the same as that in the Keys collection.

Explicit Interface Implementations

  NameDescription
Explicit interface implemetationPrivate propertyICollection<(Of <T>)>..::IsReadOnly (Inherited from ReadOnlyCollectionBase<(Of <T>)>.)
Explicit interface implemetationPrivate propertyICollection..::IsSynchronized
Indicates whether the collection is synchronized.
(Inherited from ReadOnlyCollectionBase<(Of <T>)>.)
Explicit interface implemetationPrivate propertyICollection..::SyncRoot
Indicates the synchronization object for this collection.
(Inherited from ReadOnlyCollectionBase<(Of <T>)>.)
Explicit interface implemetationPrivate propertyIDictionary..::IsFixedSize
Returns whether this dictionary is fixed size.
Explicit interface implemetationPrivate propertyIDictionary..::IsReadOnly
Returns if this dictionary is read-only.
Explicit interface implemetationPrivate propertyIDictionary..::Item
Gets the value associated with a given key. When getting a value, if this key is not found in the collection, then null is returned. If the key is not of the correct type for this dictionary, null is returned.
Explicit interface implemetationPrivate propertyIDictionary..::Keys
Returns a collection of all the keys in the dictionary. The values in this collection will be enumerated in the same order as the (overridden) GetEnumerator method.
Explicit interface implemetationPrivate propertyIDictionary..::Values
Returns a collection of all the values in the dictionary. The values in this collection will be enumerated in the same order as the (overridden) GetEnumerator method.

See Also